home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 2 / L'Effet Pommier - Volume 02.iso / Plateau / Shards.c Folder / Shards / Shards.rsrc / TEXT_350_Golden Rectangle.txt < prev    next >
Text File  |  1995-05-17  |  1KB  |  11 lines

  1. The ancient Greeks called this target shape a "golden rectangle" because it has the property that the ratio of its width to its height is the same as the ratio of its width plus height to its width.  Or if we call its width W and its height H then W/H = (W + H)/W.  This equation can be solved to get an explicit expression for the "golden ratio",  W/H = (1 + sqrt(5))/2.
  2.  
  3. This rectangle has many interesting properties and symmetries.  For instance, if you divide a golden rectangle into a square of size H and another rectangle, then this new rectangle will also be a "golden rectangle". By repeating this process on each new rectangle you will produce an infinite spiral of squares inside the original rectangle.
  4.  
  5. The golden ratio and its conjugate, 1 - sqrt(5))/2, are also related to the Fibonacci numbers.  The Fibonacci numbers are defined by the following recurrence:
  6.    F(0) = 0,
  7.    F(1) = 1,
  8.    F(k) = F(k-1) + F(k-2)   for k ΓëÑ 2
  9. and it can be shown that the terms in this sequence are also given by:
  10.    F(k) = (R^k - R_conj^k)/sqrt(5)  
  11. where R = the golden ratio and R_conj = the conjugate of the golden ratio.